home *** CD-ROM | disk | FTP | other *** search
- on setMovie movieNumber
- global gMovieMap, STclickLine, gSourcePath, gMovieBasePath
- the itemDelimiter = ";"
- movieFile = item movieNumber * 2 of line STclickLine + 4 of gMovieMap
- case the machineType of
- 256:
- importFileInto(cast(200), gMovieBasePath & movieFile)
- otherwise:
- importFileInto(cast(200), gSourcePath & movieFile)
- end case
- the itemDelimiter = ","
- repeat with n = 1 to the maxinteger
- case the machineType of
- 256:
- if member(200).fileName = (gMovieBasePath & movieFile) then
- exit repeat
- end if
- otherwise:
- if member(200).fileName = (gSourcePath & movieFile) then
- exit repeat
- end if
- end case
- end repeat
- member(200).pausedAtStart = 1
- end
-